home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / nansi286.arc / NANSI_D.ASM < prev    next >
Assembly Source File  |  1987-07-19  |  403b  |  17 lines

  1. ;---- nansi_d.asm -----------------
  2. ; Definitions for the new ANSI driver.
  3. ; (C) 1986 Daniel Kegel
  4. ; May be distributed for educational and personal use only
  5.  
  6. takeBIOS    equ    0    ; take over BIOS write_tty if true
  7. is_8088        equ    1    ; no fancy instructions if true
  8. cls_homes_too    equ    1    ; set true for ANSI.SYS compatibility
  9.  
  10.     if    is_8088
  11.         .8086
  12.     else
  13.         .286c
  14.     endif
  15.  
  16. ;---- end of nansi_d.asm ----
  17.